@charset "UTF-8";
@import url(bootstrap-grid.min.css);
@import url(swiper.min.css);
@import url(font-awesome.min.css);
/*#region reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

a {
  text-decoration: none;
  color: inherit;
  background-color: transparent; }

html, body {
  width: 100%;
  height: 100%; }

*, *:before, *:after {
  box-sizing: border-box; }

/*#endregion*/
/*#region mixin*/
/*#endregion*/
/*#region color*/
/*#endregion*/
/*#region typo*/
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 16px; }

h1 {
  font-size: 36px; }

h2 {
  font-size: 32px; }

h3 {
  font-size: 28px; }

h4 {
  font-size: 24px; }

h5 {
  font-size: 22px; }

h6 {
  font-size: 20px; }

p, ul, ol, img {
  margin-bottom: 24px; }

ul, ol {
  padding-left: 20px; }

img {
  max-width: 100%;
  height: auto; }

small {
  font-size: 60%; }

strong {
  font-weight: 700; }

/*#endregion*/
/*#region forms*/
.btn {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  color: #974bf5;
  padding: 12px 48px;
  text-align: center;
  border: solid 3px #974bf5;
  border-radius: 0px;
  background: transparent;
  outline: 0 none;
  margin-bottom: 16px;
  cursor: pointer;
  transition: all .4s ease-in-out; }
  .btn.btn-white {
    color: #ffffff;
    border-color: #ffffff; }
  .btn.btn-blue {
    color: #fff;
    background: #50c6d6;
    border: #50c6d6; }
  .btn:hover {
    color: #fff;
    border-color: #537beb;
    background-color: #537beb; }

.form-control {
  display: block;
  width: 100%;
  padding: 15px 8px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 12px;
  border: solid 1px #a2a2a2; }

textarea {
  resize: vertical; }

.field_col {
  width: 38%;
  margin-right: 12px; }
  .field_col:last-child {
    margin: 0; }

/*#endregion*/
body {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.28px;
  font-weight: 400;
  color: #000000; }

#header {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 56px;
  background-color: #974bf5;
  z-index: 3; }
  #header .header_menu {
    height: 50vh;
    padding: 16px 12px; }
    #header .header_menu #header_logo {
      display: none;
      width: 140px; }
      #header .header_menu #header_logo img {
        display: block;
        width: 100%;
        margin: 0; }
    #header .header_menu #menu_trigger {
      position: relative;
      width: 32px;
      cursor: pointer;
      z-index: 3; }
      #header .header_menu #menu_trigger span {
        display: block;
        height: 2.5px;
        background-color: #fff;
        margin-bottom: 6px;
        transition: all .4s ease; }
        #header .header_menu #menu_trigger span:nth-child(2n) {
          width: 91%; }
        #header .header_menu #menu_trigger span:last-child {
          width: 82%; }
      #header .header_menu #menu_trigger:after {
        content: 'menü';
        display: block;
        font-size: 9px;
        font-weight: 500;
        color: #ffffff; }
      #header .header_menu #menu_trigger:hover span:nth-child(2n) {
        margin-left: 9%; }
      #header .header_menu #menu_trigger:hover span:last-child {
        margin-left: 18%; }
    #header .header_menu #lang-switch {
      position: relative;
      padding: 24px 0;
      font-size: 14px;
      color: #fff;
      text-align: center;
      z-index: 2; }
      #header .header_menu #lang-switch a {
        margin: 4px 0; }
        #header .header_menu #lang-switch a.active {
          font-weight: bold; }
    #header .header_menu #menu-overlay {
      position: fixed;
      left: 0px;
      right: 0px;
      top: 0px;
      bottom: 0px;
      background-color: rgba(0, 0, 0, 0.3);
      display: none; }
    #header .header_menu #menu-holder {
      width: 100%;
      height: 50vh;
      background-color: #595959;
      padding: 60px 48px 30px 76px;
      display: flex;
      align-items: flex-start;
      position: fixed;
      z-index: 2;
      left: -100%;
      transition: left 0.4s ease;
      top: 0; }
      #header .header_menu #menu-holder #menu_decor {
        position: absolute;
        width: 160px;
        top: 48px;
        right: 48px; }
        #header .header_menu #menu-holder #menu_decor img {
          display: block;
          width: 100%;
          -webkit-filter: hue-rotate(0deg) saturate(0) brightness(100);
          filter: hue-rotate(0deg) saturate(0) brightness(100);
          margin: 0; }
      #header .header_menu #menu-holder #menu {
        position: relative;
        margin: 0px;
        padding: 0px;
        list-style: none;
        max-width: 40%;
        font-size: 30px;
        line-height: 1;
        font-weight: 700;
        color: #ffffff;
        margin-right: 48px; }
        #header .header_menu #menu-holder #menu li {
          display: inline-block;
          width: 49%; }
          #header .header_menu #menu-holder #menu li a {
            display: inline-block;
            padding: 12px 0 12px 0; }
      #header .header_menu #menu-holder #menu_info {
        position: relative;
        max-width: 42%;
        font-size: 16px;
        margin-top: 12px;
        color: #ffffff; }
        #header .header_menu #menu-holder #menu_info a:hover {
          text-decoration: underline; }
      #header .header_menu #menu-holder #menu-close {
        width: 92px;
        height: 92px;
        position: absolute;
        left: 0px;
        top: 50%;
        margin-top: -46px;
        cursor: pointer;
        background: #303030 url("../gfx/icon-close-white.png") no-repeat center center;
        background-size: 20px auto;
        transition: background-color 0.2s ease; }
        #header .header_menu #menu-holder #menu-close:hover {
          background-color: #202020; }
  #header .header_contact {
    height: 50vh;
    background: #ffffff;
    padding: 12px; }
    #header .header_contact .contact_title {
      position: relative;
      width: 100%;
      height: 100%;
      writing-mode: tb-rl;
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      #header .header_contact .contact_title h3 {
        position: relative;
        font-size: initial;
        font-weight: 700;
        color: #595959;
        -webkit-transform: rotate(180deg);
        -moz-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
        cursor: pointer;
        z-index: 3; }
        #header .header_contact .contact_title h3:hover {
          color: #974bf5; }
  #header:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 56px;
    box-shadow: -0.5rem 0 6.4rem 0.7rem rgba(0, 0, 0, 0.3); }
  #header.open .header_menu #menu_trigger span {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    margin-bottom: 0;
    margin-top: 8px; }
    #header.open .header_menu #menu_trigger span:nth-child(2n) {
      display: none; }
    #header.open .header_menu #menu_trigger span:last-child {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg);
      width: 100%;
      margin-top: -2px;
      margin-left: inherit; }
  #header.open .header_menu #menu_trigger:after {
    content: none; }
  #header.open .header_menu #menu-holder {
    left: 0; }

#contacts_us {
  position: fixed;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 50vh;
  padding: 48px 72px;
  box-shadow: -0.5em 0 6.4em 0.7em rgba(0, 0, 0, 0.4);
  background-color: #e7e7e7;
  transition: left 0.4s ease;
  z-index: 3; }
  #contacts_us .contacts_close {
    position: absolute;
    left: 8px;
    bottom: 28px;
    display: block;
    width: 32px;
    height: 32px;
    cursor: pointer; }
    #contacts_us .contacts_close:before, #contacts_us .contacts_close:after {
      position: absolute;
      top: 20px;
      left: 0;
      content: '';
      width: 100%;
      height: 3px;
      background-color: #595959; }
    #contacts_us .contacts_close:before {
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
      -o-transform: rotate(45deg);
      transform: rotate(45deg); }
    #contacts_us .contacts_close:after {
      -webkit-transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      transform: rotate(-45deg); }
  #contacts_us .contacts_holder {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    color: #595959; }
    #contacts_us .contacts_holder .contacts_us_info {
      font-weight: 700; }
      #contacts_us .contacts_holder .contacts_us_info .title {
        font-size: 32px;
        font-weight: 700; }
      #contacts_us .contacts_holder .contacts_us_info a {
        display: inline-block;
        margin-bottom: 12px; }
      #contacts_us .contacts_holder .contacts_us_info .social-list {
        font-size: 24px;
        padding: 0;
        margin: 0; }
        #contacts_us .contacts_holder .contacts_us_info .social-list li {
          display: inline-block;
          margin-right: 24px; }
    #contacts_us .contacts_holder .contacts_us_form {
      width: 70%; }
      #contacts_us .contacts_holder .contacts_us_form #contact_form {
        display: flex;
        align-items: flex-start;
        justify-content: space-between; }

.swiper-container#home-slide {
  width: 100%;
  height: 100%;
  z-index: 2; }
  .swiper-container#home-slide .swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding: 202px 48px 48px; }
    .swiper-container#home-slide .swiper-slide .slide_content {
      color: #ffffff;
      font-weight: 700;
      width: 64%;
      z-index: 1; }
      .swiper-container#home-slide .swiper-slide .slide_content h1 {
        font-size: 40px;
        margin-bottom: 32px; }
      .swiper-container#home-slide .swiper-slide .slide_content p {
        font-size: 24px;
        margin-bottom: 32px; }
      .swiper-container#home-slide .swiper-slide .slide_content .btn {
        text-transform: uppercase; }

.section {
  position: relative;
  padding: 56px 0; }
  .section#home {
    padding: 0;
    height: 100vh; }
    .section#home video, .section#home iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0; }
    .section#home:before {
      content: '';
      position: absolute;
      display: inline-block;
      width: 280px;
      height: 106px;
      background: url("../gfx/logo-white.png") center center no-repeat;
      background-size: contain;
      z-index: 2;
      top: 48px;
      left: 48px; }
    .section#home:after {
      content: '';
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      background: url("../gfx/shape.png") no-repeat center bottom;
      background-size: cover;
      opacity: 0.8; }
  .section#brands {
    background-color: #ece6da; }
  .section.no-offset {
    padding: 0; }
  .section.section-heading {
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    font-weight: 600;
    background-color: #ece6da;
    padding: 36px 144px 36px 72px;
    z-index: 0; }
    .section.section-heading .section_title {
      color: #974bf5; }
    .section.section-heading .section_desc {
      font-weight: 700;
      color: #595959;
      margin-bottom: 0; }
    .section.section-heading:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 40%;
      height: 160px;
      background-image: url("../gfx/inner-shape.png");
      background-position: 100% 100%;
      background-repeat: no-repeat;
      background-size: cover;
      z-index: -1; }
  .section.section-image {
    padding: 0; }
    .section.section-image img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .section.section-background img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    margin: 0; }
  .section.section-background .section_title {
    color: #fff;
    text-shadow: 1px 1px 15px #333; }
  .section.section-background:before {
    content: none; }

.logo-inner {
  position: absolute;
  top: 18px;
  right: 36px;
  width: 80px;
  height: 113px;
  z-index: -1; }
  .logo-inner img {
    display: block;
    width: 100%;
    margin: 0; }

.section_title {
  font-size: 40px;
  font-weight: 700; }

.case a {
  display: block; }
.case .case_thumbnail {
  overflow: hidden; }
  .case .case_thumbnail img {
    display: block;
    width: 100%;
    margin: 0;
    transition: all .4s ease; }
  .case .case_thumbnail:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1; }
.case .case_desc {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 24px;
  color: #ffffff;
  z-index: 1; }
  .case .case_desc h3 {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px; }
  .case .case_desc .desc_subtitle {
    font-size: 16px;
    font-weight: 500; }
.case:hover .case_thumbnail img {
  -webkit-transform: scale(1.075);
  -moz-transform: scale(1.075);
  -ms-transform: scale(1.075);
  -o-transform: scale(1.075);
  transform: scale(1.075); }

.brand-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
  padding: 0px;
  margin: 0; }
  .brand-list li {
    height: 200px; }
    .brand-list li a {
      display: flex;
      width: 100%;
      height: 100%;
      justify-content: center;
      align-items: center; }
      .brand-list li a img {
        display: block;
        max-width: 52%;
        max-height: 52%;
        margin: 0px;
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%); }

.grid-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(50%, 1fr)); }
  .grid-layout .grid-item {
    position: relative;
    cursor: pointer; }
    .grid-layout .grid-item .article a {
      display: flex; }
      .grid-layout .grid-item .article a .image_holder {
        position: relative;
        flex-basis: 50%;
        overflow: hidden; }
        .grid-layout .grid-item .article a .image_holder img {
          display: block;
          width: 100%;
          height: auto;
          margin: 0;
          transition: all .4s ease; }
        .grid-layout .grid-item .article a .image_holder:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          background-image: linear-gradient(to top, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0) 100%);
          z-index: 1; }
      .grid-layout .grid-item .article a .content_holder {
        flex-basis: 50%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        background: #50cad5;
        color: #ffffff;
        padding: 36px;
        z-index: 1; }
        .grid-layout .grid-item .article a .content_holder h3 {
          font-size: 18px;
          font-weight: 600;
          margin: 0; }
        .grid-layout .grid-item .article a .content_holder span {
          font-weight: 500; }
    .grid-layout .grid-item:nth-child(6n+2) a .content_holder, .grid-layout .grid-item:nth-child(6n+4) a .content_holder {
      background: #974bf5;
      order: -1; }
    .grid-layout .grid-item:nth-child(6n+1), .grid-layout .grid-item:nth-child(6n+5) {
      grid-row-end: span 2; }
      .grid-layout .grid-item:nth-child(6n+1) .article a, .grid-layout .grid-item:nth-child(6n+5) .article a {
        grid-template-columns: repeat(1, minmax(100%, 1fr)); }
        .grid-layout .grid-item:nth-child(6n+1) .article a .image_holder, .grid-layout .grid-item:nth-child(6n+5) .article a .image_holder {
          flex-basis: 100%; }
        .grid-layout .grid-item:nth-child(6n+1) .article a .content_holder, .grid-layout .grid-item:nth-child(6n+5) .article a .content_holder {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: 100%;
          padding: 56px;
          background: transparent; }
          .grid-layout .grid-item:nth-child(6n+1) .article a .content_holder h3, .grid-layout .grid-item:nth-child(6n+5) .article a .content_holder h3 {
            font-size: 28px; }
    .grid-layout .grid-item:hover:hover .image_holder img {
      -webkit-transform: scale(1.075);
      -moz-transform: scale(1.075);
      -ms-transform: scale(1.075);
      -o-transform: scale(1.075);
      transform: scale(1.075); }

.expertise {
  display: inline-block;
  width: 40%;
  margin: 0 4%;
  vertical-align: top; }
  .expertise h3 {
    font-size: 24px;
    font-weight: 700;
    color: #537beb;
    margin-bottom: 24px; }
  .expertise ul {
    padding: 0;
    list-style: none;
    font-size: 14px;
    line-height: 1.36;
    font-weight: 600;
    color: #58585a; }
    .expertise ul li {
      margin-bottom: 8px; }

.service_item {
  display: flex; }
  .service_item .image_holder {
    flex-basis: 50%;
    overflow: hidden; }
    .service_item .image_holder img {
      display: block;
      width: 100%;
      margin: 0; }
  .service_item .content_holder {
    position: relative;
    flex-basis: 50%;
    font-size: 16px;
    font-weight: 500;
    color: #595959;
    padding: 72px 72px 36px 180px; }
    .service_item .content_holder .fancy-title {
      position: absolute;
      top: 80px;
      left: 64px;
      bottom: 72px;
      font-size: 36px;
      line-height: 1.2;
      letter-spacing: 1px;
      font-weight: 100;
      writing-mode: tb-rl; }
    .service_item .content_holder h3 {
      font-size: 24px;
      font-weight: 600; }
  .service_item:nth-child(2n+1) .image_holder {
    order: 1; }

#footer {
  position: relative;
  width: calc(100% - 56px);
  margin-left: 56px;
  color: #595959; }
  #footer .footer_top {
    padding: 96px 0 48px 0;
    border-bottom: 1px solid #595959;
    margin-bottom: 24px; }
    #footer .footer_top #logo-footer {
      display: block;
      width: 120px;
      margin: 0 auto 32px auto; }
      #footer .footer_top #logo-footer img {
        display: block;
        width: 100%;
        margin: 0; }
    #footer .footer_top .footer_descr {
      max-width: 40%;
      margin: 0 auto 72px auto;
      font-size: 24px;
      line-height: 1.32;
      font-weight: 700;
      color: #537beb;
      text-align: center; }
    #footer .footer_top .footer_wrapper {
      display: flex;
      padding: 0 96px; }
      #footer .footer_top .footer_wrapper .footer_column {
        font-size: 14px;
        font-weight: 600;
        text-align: center;
        padding: 0 24px;
        display: flex;
        width: 50%; }
        #footer .footer_top .footer_wrapper .footer_column:first-child {
          border-right: 1px solid #595959; }
      #footer .footer_top .footer_wrapper .footer_contact {
        padding-left: 48px; }
      #footer .footer_top .footer_wrapper .social-list {
        list-style: none;
        padding: 0px;
        font-size: 24px;
        line-height: 1;
        margin: 16px 0 0; }
        #footer .footer_top .footer_wrapper .social-list li {
          display: inline-block;
          margin: 0 12px; }
          #footer .footer_top .footer_wrapper .social-list li a {
            display: inline-block;
            padding: 3px; }
      #footer .footer_top .footer_wrapper .footer_menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        list-style: none;
        padding: 0;
        margin: 0 auto 24px; }
        #footer .footer_top .footer_wrapper .footer_menu li {
          margin: 0 24px; }
          #footer .footer_top .footer_wrapper .footer_menu li a {
            display: inline-block; }
  #footer .group-text {
    font-size: 14px;
    font-weight: 500;
    text-align: center; }
    #footer .group-text a {
      color: #537beb; }
  #footer .footer_copyright_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px; }
    #footer .footer_copyright_wrap .footer_copyright {
      font-size: 11px;
      font-weight: 600; }
    #footer .footer_copyright_wrap .footer_privacy {
      list-style: none;
      padding: 0;
      font-size: 12px;
      font-weight: 700; }
      #footer .footer_copyright_wrap .footer_privacy li {
        display: inline-block;
        margin-left: 16px;
        border-right: .2rem solid #58585a; }
        #footer .footer_copyright_wrap .footer_privacy li a {
          text-decoration: underline; }
        #footer .footer_copyright_wrap .footer_privacy li:last-child {
          border: none; }

#stage {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 3;
  display: none;
  justify-content: center;
  align-items: center; }
  #stage .content-holder {
    position: relative;
    width: 440px;
    max-width: 90%;
    background: #FFF;
    padding: 48px 24px 24px;
    border-radius: 16px; }
    #stage .content-holder .content-wrapper {
      max-height: 480px;
      overflow: auto; }
  #stage .video-holder {
    position: relative;
    width: 80%;
    max-width: 720px; }
    #stage .video-holder .video-content {
      position: relative;
      padding-bottom: 56.25%;
      /* 16:9 */
      height: 0; }
      #stage .video-holder .video-content iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; }
  #stage .btn-close {
    width: 28px;
    height: 28px;
    top: -36px;
    right: 0;
    position: absolute;
    cursor: pointer;
    background-image: url("../gfx/icon-close-white.png");
    background-size: contain;
    background-repeat: no-repeat; }

#content {
  position: relative;
  width: calc(100% - 56px);
  margin-left: 56px; }

@media (max-width: 991.98px) {
  h1 {
    font-size: 28px; }

  h2 {
    font-size: 26px; }

  h3 {
    font-size: 24px; }

  h4 {
    font-size: 22px; }

  h5, h6 {
    font-size: 20px; }

  #header {
    width: 100%;
    height: auto; }
    #header .header_menu {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: auto;
      padding: 8px 12px; }
      #header .header_menu #header_logo {
        display: block; }
      #header .header_menu #menu-holder {
        flex-direction: column;
        padding: 140px 16px 40px;
        height: 100%;
        overflow-y: auto; }
        #header .header_menu #menu-holder #menu_decor {
          left: 16px;
          top: 24px;
          width: 60px; }
        #header .header_menu #menu-holder #menu {
          font-size: 24px;
          max-width: initial; }
        #header .header_menu #menu-holder #menu_info {
          max-width: initial; }
    #header .header_contact {
      display: none; }
    #header:after {
      width: 100%;
      height: 69px; }

  #contacts_us {
    display: none; }

  .section#home {
    height: calc(100vh - 69px); }
    .section#home::before {
      display: none; }

  .expertise {
    width: 100%;
    margin: 0 0 24px 0; }

  .service_item {
    flex-direction: column; }
    .service_item .content_holder {
      padding: 48px 12px 48px 72px; }
      .service_item .content_holder .fancy-title {
        font-size: 28px;
        left: 12px;
        top: 52px;
        bottom: 48px; }
    .service_item:nth-child(2n+1) .image_holder {
      order: 0; }

  .brand-list {
    grid-template-columns: repeat(3, 1fr); }

  .grid-layout {
    grid-template-columns: repeat(1, 1fr); }
    .grid-layout .grid-item .article a .content_holder {
      padding: 24px; }
    .grid-layout .grid-item:nth-child(6n+1) .article a .content_holder, .grid-layout .grid-item:nth-child(6n+5) .article a .content_holder {
      padding: 24px; }

  #footer {
    width: 100%;
    margin-left: 0; }
    #footer .footer_top {
      padding: 48px 0; }
      #footer .footer_top .footer_descr {
        max-width: initial;
        margin: 0 0 48px 0; }
      #footer .footer_top .footer_wrapper {
        padding: 0 48px;
        flex-direction: column; }
        #footer .footer_top .footer_wrapper .footer_column {
          width: 100%;
          padding: 0;
          margin-bottom: 24px;
          justify-content: center; }
          #footer .footer_top .footer_wrapper .footer_column:first-child {
            border-right: none;
            border-bottom: solid 1px #595959; }
        #footer .footer_top .footer_wrapper .social-list {
          margin-bottom: 24px; }

  #content {
    width: 100%;
    margin-left: 0;
    padding-top: 69px; } }
@media (max-width: 767.98px) {
  #header .header_menu .switch-holder {
    display: flex; }
    #header .header_menu .switch-holder #lang-switch {
      padding: 4px 24px 0 0;
      order: -1; }

  .swiper-container#home-slide .swiper-slide {
    padding: 48px;
    text-align: center; }
    .swiper-container#home-slide .swiper-slide .slide_content {
      width: 100%; }
      .swiper-container#home-slide .swiper-slide .slide_content h1 {
        font-size: 28px; }
      .swiper-container#home-slide .swiper-slide .slide_content p {
        font-size: 20px; }

  .logo-inner {
    display: none; }

  .section.section-heading {
    min-height: 36vh;
    padding: 24px; }

  .case .case_desc {
    left: 16px;
    right: 16px;
    bottom: 16px; }
    .case .case_desc h3 {
      font-size: 20px; }

  .brand-list li {
    height: 120px; }

  .grid-layout {
    grid-template-columns: repeat(1, 1fr); }
    .grid-layout .grid-item .article a .content_holder {
      padding: 24px; }
    .grid-layout .grid-item:nth-child(6n+1) .article a .content_holder, .grid-layout .grid-item:nth-child(6n+5) .article a .content_holder {
      padding: 12px; }

  #footer .footer_top {
    padding: 24px 0; }
    #footer .footer_top .footer_wrapper {
      padding: 0 15px; }
      #footer .footer_top .footer_wrapper .footer_column {
        display: block; }
        #footer .footer_top .footer_wrapper .footer_column .footer_contact {
          padding: 0; } }

/*# sourceMappingURL=style.css.map */
